home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / p_man / cat3 / complib / DGEFA.z / DGEFA
Text File  |  1998-10-30  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. DDDDGGGGEEEEFFFFAAAA((((3333FFFF))))                                                            DDDDGGGGEEEEFFFFAAAA((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DGEFA   - DGEFA factors a double precision matrix by Gaussian
  10.      elimination.
  11.  
  12.      DGEFA is usually called by DGECO, but it can be called directly with a
  13.      saving in time if  RCOND  is not needed.  (Time for DGECO) = (1 +
  14.      9/N)*(Time for DGEFA) .
  15.  
  16.  
  17. SSSSYYYYNNNNOOOOPPPPSSSSYYYYSSSS
  18.       SUBROUTINE DGEFA(A,LDA,N,IPVT,INFO)
  19.  
  20. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  21.      On Entry
  22.  
  23.      AAAA DOUBLE PRECISION(LDA, N)
  24.         the matrix to be factored.
  25.  
  26.      LLLLDDDDAAAA INTEGER
  27.         the leading dimension of the array  A .
  28.  
  29.      NNNN INTEGER
  30.         the order of the matrix  A .  On Return
  31.  
  32.      AAAA an upper triangular matrix and the multipliers
  33.         which were used to obtain it.
  34.         The factorization can be written  A = L*U  where
  35.         L  is a product of permutation and unit lower
  36.         triangular matrices and  U  is upper triangular.
  37.  
  38.      IIIIPPPPVVVVTTTT INTEGER(N)
  39.         an integer vector of pivot indices.
  40.  
  41.      IIIINNNNFFFFOOOO INTEGER
  42.         = 0  normal value.
  43.         = K  if  U(K,K) .EQ. 0.0 .  This is not an error
  44.         condition for this subroutine, but it does
  45.         indicate that DGESL or DGEDI will divide by zero
  46.         if called.  Use  RCOND  in DGECO for a reliable
  47.         indication of singularity.  LINPACK.  This version dated 08/14/78 .
  48.      Cleve Moler, University of New Mexico, Argonne National Lab.  Subroutines
  49.      and Functions BLAS DAXPY,DSCAL,IDAMAX
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.